home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 November: Tool Chest / Dev.CD Nov 98 TC.toast / What's New? / Development Kits / USBDDK_v1.0.1_updated / Examples / USBSampleStorageDriver / SampleStorageDeviceID.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-09-29  |  464 b   |  26 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        SampleStorageDeviceID.h
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Version:    xxx put version here xxx
  7.  
  8.     Copyright:    © 1998 by Apple Computer, Inc., all rights reserved.
  9.  
  10. */
  11.  
  12. #ifndef __SAMPLESTORAGEDEVICEID__
  13. #define __SAMPLESTORAGEDEVICEID__
  14.  
  15. #include <USB.h>
  16.  
  17. // Shuttle USB-ATAPI Bridge cable
  18. enum
  19. {
  20.     kDriverVendorID         = 0x04e6,        // USB Vendor ID
  21.     kDriverProductID    = 0x0001,        // USB Product ID.
  22.     kDriverClassID        = 0xFF,
  23.     kDriverSubClassID    = 0x00
  24. };
  25.  
  26. #endif